GET
/
v1
/
test-runs
/
entries
curl --request GET \
  --url https://api.getmaxim.ai/v1/test-runs/entries \
  --header 'x-maxim-api-key: <api-key>'
{
  "data": {
    "runs": [
      {}
    ],
    "total": 123
  }
}

Authorizations

x-maxim-api-key
string
header
required

API key for authentication

Query Parameters

workspaceId
string
required

Unique identifier for the workspace

id
string
required

Test run ID to fetch entries for

entryId
string

Entry ID to fetch detailed information for a specific entry

page
number
default:1

Page number for pagination

Required range: x >= 1
limit
number | null
default:20

Maximum number of records to return (max: 100)

Required range: x <= 100
sort
string

Sort order for the results

searchQuery
string

Search query to filter results

filters
object[]

Additional filters for the query

Response

200
application/json

Successfully fetched test run entries

The response is of type object.